ShortCutKeySet SUB Action Assigns shortcut keys to individual menu items. Syntax ShortCutKeySet menu%, item%, kbd$ Remarks The ShortCutKeySet procedure uses the following arguments. menu% ----- An integer that identifies the position (from left to right) of the affected menu. item% ----- An integer that identifies the number of the menu item within the menu. kbd$ ---- A string that indicates which character is allowed as a shortcut key for selection of the menu item. The string argument kbd$ can be any single character, or any extended characters, except those that use the Alt key. Without shortcut keys, each menu item can be selected by pressing the Alt key and the highlighted character in the menu name, followed by the highlighted letter in the menu item. CommandKeySet provides additional functionality by allowing you to specify a single character, such as Shift+F1 or F1, as a shortcut to menu item selection. A separate ShortCutKeySet entry is required for each shortcut key you assign. Use ShortCutKeySet statements during menu initialization at the same place where MenuSet is used. See Also. MenuSet, ShortCutKeyDelete, ShortCutKeyEvent Example See the SetupMenu procedure in the code example UIDEMO.BAS for a specific implementation.